type github.com/jackc/pgx/v5/pgxpool.poolRows

15 uses

	github.com/jackc/pgx/v5/pgxpool (current package)
		conn.go#L132: func (c *Conn) getPoolRows(r pgx.Rows) *poolRows {
		pool.go#L31: 	poolRowss  []poolRows
		pool.go#L63: func (cr *connResource) getPoolRows(c *Conn, r pgx.Rows) *poolRows {
		pool.go#L65: 		cr.poolRowss = make([]poolRows, 128)
		pool.go#L309: 					poolRowss:  make([]poolRows, 64),
		rows.go#L28: type poolRows struct {
		rows.go#L34: func (rows *poolRows) Close() {
		rows.go#L42: func (rows *poolRows) Err() error {
		rows.go#L49: func (rows *poolRows) CommandTag() pgconn.CommandTag {
		rows.go#L53: func (rows *poolRows) FieldDescriptions() []pgconn.FieldDescription {
		rows.go#L57: func (rows *poolRows) Next() bool {
		rows.go#L69: func (rows *poolRows) Scan(dest ...any) error {
		rows.go#L77: func (rows *poolRows) Values() ([]any, error) {
		rows.go#L85: func (rows *poolRows) RawValues() [][]byte {
		rows.go#L89: func (rows *poolRows) Conn() *pgx.Conn {